diff --git a/apps/desktop/src/calendar/queries.test.ts b/apps/desktop/src/calendar/queries.test.ts index 43caf1aff9..185f7911d1 100644 --- a/apps/desktop/src/calendar/queries.test.ts +++ b/apps/desktop/src/calendar/queries.test.ts @@ -71,6 +71,16 @@ describe("calendar SQLite queries", () => { JSON.stringify([{ name: "Alice", email: "alice@example.com" }]), ), ).toEqual([{ name: "Alice", email: "alice@example.com" }]); + expect( + parseEventParticipants( + JSON.stringify([ + null, + "Alice", + { name: 42 }, + { name: "Bob", unexpected: true }, + ]), + ), + ).toEqual([{ name: "Bob" }]); expect(parseEventParticipants("not-json")).toEqual([]); expect(parseEventParticipants("{}")).toEqual([]); }); diff --git a/apps/desktop/src/calendar/queries.ts b/apps/desktop/src/calendar/queries.ts index 2e3f5c5d0d..1597d5b5c7 100644 --- a/apps/desktop/src/calendar/queries.ts +++ b/apps/desktop/src/calendar/queries.ts @@ -1,6 +1,6 @@ import { useMemo } from "react"; -import type { EventParticipant } from "@anlg/store"; +import { eventParticipantSchema, type EventParticipant } from "@anlg/store"; import { executeTransaction, liveQueryClient, useLiveQuery } from "~/db"; import { enqueueDatabaseWrite } from "~/db/write-queue"; @@ -35,7 +35,16 @@ type CalendarSqlRow = { created_at: string; }; -type EventParticipantsSqlRow = { participants_json: string }; +type SessionCalendarEventSqlRow = { + title: string; + started_at: string; + ended_at: string; + is_all_day: boolean | number; + location: string; + meeting_link: string; + description: string; + participants_json: string; +}; type CalendarEventStartSqlRow = { started_at: string }; @@ -82,6 +91,14 @@ export type NearbyCalendarEvent = { participantNames: string[]; }; +export type SessionCalendarEvent = Omit< + SessionCalendarEventSqlRow, + "is_all_day" | "participants_json" +> & { + is_all_day: boolean; + participants: EventParticipant[]; +}; + export type CalendarRow = Omit & { enabled: boolean; }; @@ -418,12 +435,29 @@ export async function getNearbyCalendarEvents( export function useSessionEventParticipants( sessionId: string, ): EventParticipant[] { - const { data = EMPTY_EVENT_PARTICIPANTS } = useLiveQuery< - EventParticipantsSqlRow, - EventParticipant[] + return ( + useSessionCalendarEvent(sessionId)?.participants ?? EMPTY_EVENT_PARTICIPANTS + ); +} + +export function useSessionCalendarEvent( + sessionId: string, + { enabled = true }: { enabled?: boolean } = {}, +): SessionCalendarEvent | null { + const { data = null } = useLiveQuery< + SessionCalendarEventSqlRow, + SessionCalendarEvent | null >({ sql: ` - SELECT event.participants_json + SELECT + event.title, + event.started_at, + event.ended_at, + event.is_all_day, + event.location, + event.meeting_link, + event.description, + event.participants_json FROM sessions AS session JOIN events AS event ON event.deleted_at IS NULL @@ -447,10 +481,24 @@ export function useSessionEventParticipants( LIMIT 1 `, params: [sessionId], - enabled: Boolean(sessionId), - mapRows: (rows) => parseEventParticipants(rows[0]?.participants_json), + enabled: enabled && Boolean(sessionId), + mapRows: (rows) => { + const row = rows[0]; + return row + ? { + title: row.title, + started_at: row.started_at, + ended_at: row.ended_at, + is_all_day: Boolean(row.is_all_day), + location: row.location, + meeting_link: row.meeting_link, + description: row.description, + participants: parseEventParticipants(row.participants_json), + } + : null; + }, }); - return sessionId ? data : EMPTY_EVENT_PARTICIPANTS; + return sessionId && enabled ? data : null; } export function mapTimelineEventRows( @@ -486,7 +534,10 @@ export function parseEventParticipants( try { const parsed = JSON.parse(value); return Array.isArray(parsed) - ? (parsed as EventParticipant[]) + ? parsed.flatMap((participant) => { + const result = eventParticipantSchema.safeParse(participant); + return result.success ? [result.data] : []; + }) : EMPTY_EVENT_PARTICIPANTS; } catch { return EMPTY_EVENT_PARTICIPANTS; diff --git a/apps/desktop/src/i18n/locales/af/messages.po b/apps/desktop/src/i18n/locales/af/messages.po index 01b96154c6..b586065bfb 100644 --- a/apps/desktop/src/i18n/locales/af/messages.po +++ b/apps/desktop/src/i18n/locales/af/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/af/messages.ts b/apps/desktop/src/i18n/locales/af/messages.ts index 16ae72d687..fc1fb1f448 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 1e00082048..bdca75343a 100644 --- a/apps/desktop/src/i18n/locales/am/messages.po +++ b/apps/desktop/src/i18n/locales/am/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/am/messages.ts b/apps/desktop/src/i18n/locales/am/messages.ts index f59314776c..08521686dc 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 24eaa43c1e..35dd365ce9 100644 --- a/apps/desktop/src/i18n/locales/ar/messages.po +++ b/apps/desktop/src/i18n/locales/ar/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ar/messages.ts b/apps/desktop/src/i18n/locales/ar/messages.ts index 2162fce9bd..ff349ecf73 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 766eec483b..fbd0ae3658 100644 --- a/apps/desktop/src/i18n/locales/as/messages.po +++ b/apps/desktop/src/i18n/locales/as/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/as/messages.ts b/apps/desktop/src/i18n/locales/as/messages.ts index 7c26483a46..96a1a2024f 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 6f643e0a61..6f8639084f 100644 --- a/apps/desktop/src/i18n/locales/az/messages.po +++ b/apps/desktop/src/i18n/locales/az/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/az/messages.ts b/apps/desktop/src/i18n/locales/az/messages.ts index 2ebbf0f59d..9a4876db80 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 6c59c7d237..b11086cd12 100644 --- a/apps/desktop/src/i18n/locales/ba/messages.po +++ b/apps/desktop/src/i18n/locales/ba/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ba/messages.ts b/apps/desktop/src/i18n/locales/ba/messages.ts index 37c1132e04..c611615727 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 119d7faa34..60df7a47bb 100644 --- a/apps/desktop/src/i18n/locales/be/messages.po +++ b/apps/desktop/src/i18n/locales/be/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/be/messages.ts b/apps/desktop/src/i18n/locales/be/messages.ts index eb5539d5e1..caa35b54f4 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 e4c3c2044d..f91b4eab78 100644 --- a/apps/desktop/src/i18n/locales/bg/messages.po +++ b/apps/desktop/src/i18n/locales/bg/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/bg/messages.ts b/apps/desktop/src/i18n/locales/bg/messages.ts index 88ab09b5da..8dc1d54e3a 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 ccb9f0548d..bc14f9fd9e 100644 --- a/apps/desktop/src/i18n/locales/bn/messages.po +++ b/apps/desktop/src/i18n/locales/bn/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/bn/messages.ts b/apps/desktop/src/i18n/locales/bn/messages.ts index c58f02deac..17e5bd7032 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 8f7c415d9e..c983a788e4 100644 --- a/apps/desktop/src/i18n/locales/bo/messages.po +++ b/apps/desktop/src/i18n/locales/bo/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/bo/messages.ts b/apps/desktop/src/i18n/locales/bo/messages.ts index fab4214488..0835adea3e 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 eba6d1e3d5..b31306f545 100644 --- a/apps/desktop/src/i18n/locales/br/messages.po +++ b/apps/desktop/src/i18n/locales/br/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/br/messages.ts b/apps/desktop/src/i18n/locales/br/messages.ts index 4bff977865..cb926973c1 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 fe5b340418..45a49c50a0 100644 --- a/apps/desktop/src/i18n/locales/bs/messages.po +++ b/apps/desktop/src/i18n/locales/bs/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/bs/messages.ts b/apps/desktop/src/i18n/locales/bs/messages.ts index 714243fb6c..8c9e31c917 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 65e9a879d4..0ceccccdf6 100644 --- a/apps/desktop/src/i18n/locales/ca/messages.po +++ b/apps/desktop/src/i18n/locales/ca/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ca/messages.ts b/apps/desktop/src/i18n/locales/ca/messages.ts index 799d5a3805..5cdea47bc6 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 cb6eb8f1d5..a63b7baf5b 100644 --- a/apps/desktop/src/i18n/locales/cs/messages.po +++ b/apps/desktop/src/i18n/locales/cs/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/cs/messages.ts b/apps/desktop/src/i18n/locales/cs/messages.ts index 4b5178a668..deeb693bdf 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 d9c0929f41..6d307a5995 100644 --- a/apps/desktop/src/i18n/locales/cy/messages.po +++ b/apps/desktop/src/i18n/locales/cy/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/cy/messages.ts b/apps/desktop/src/i18n/locales/cy/messages.ts index d6f57ea841..d5d136c089 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 e44324ea85..907085c653 100644 --- a/apps/desktop/src/i18n/locales/da/messages.po +++ b/apps/desktop/src/i18n/locales/da/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/da/messages.ts b/apps/desktop/src/i18n/locales/da/messages.ts index 459bb858d7..bc9fd03be4 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 2f0493c34b..51fc71a4f2 100644 --- a/apps/desktop/src/i18n/locales/de/messages.po +++ b/apps/desktop/src/i18n/locales/de/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/de/messages.ts b/apps/desktop/src/i18n/locales/de/messages.ts index f939fcfa5f..c177d909c5 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 0f5d7f1ad1..9fc7da8fd4 100644 --- a/apps/desktop/src/i18n/locales/el/messages.po +++ b/apps/desktop/src/i18n/locales/el/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/el/messages.ts b/apps/desktop/src/i18n/locales/el/messages.ts index b23f8a7844..9b9f046df7 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 2beb390177..1903b6bb65 100644 --- a/apps/desktop/src/i18n/locales/en/messages.po +++ b/apps/desktop/src/i18n/locales/en/messages.po @@ -2308,6 +2308,10 @@ msgstr "Last delivery {0}" msgid "Last import: {0} added, {1} unchanged" msgstr "Last import: {0} added, {1} unchanged" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "Last meeting" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "No people" msgid "No people in this organization" msgstr "No people in this organization" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "No previous meeting summary is available. Calendar details are shown above." + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "Post the meeting summary to a channel you can access." msgid "Post to a channel" msgstr "Post to a channel" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "Pre-meeting brief" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "Prepare for events with a 5-minute reminder." diff --git a/apps/desktop/src/i18n/locales/en/messages.ts b/apps/desktop/src/i18n/locales/en/messages.ts index 1e9a027019..2501ef2d08 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 1b3897ee44..34a43c5a69 100644 --- a/apps/desktop/src/i18n/locales/es/messages.po +++ b/apps/desktop/src/i18n/locales/es/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/es/messages.ts b/apps/desktop/src/i18n/locales/es/messages.ts index d37283f671..c00aede451 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 ceafa39aea..2cd08117ed 100644 --- a/apps/desktop/src/i18n/locales/et/messages.po +++ b/apps/desktop/src/i18n/locales/et/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/et/messages.ts b/apps/desktop/src/i18n/locales/et/messages.ts index 941e368616..ccb9fa6326 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 706f387949..c4e0b0b846 100644 --- a/apps/desktop/src/i18n/locales/eu/messages.po +++ b/apps/desktop/src/i18n/locales/eu/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/eu/messages.ts b/apps/desktop/src/i18n/locales/eu/messages.ts index 21f475ebe5..ae3f776ce6 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 a3d1ab71ca..3d373d14db 100644 --- a/apps/desktop/src/i18n/locales/fa/messages.po +++ b/apps/desktop/src/i18n/locales/fa/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/fa/messages.ts b/apps/desktop/src/i18n/locales/fa/messages.ts index 533b8bb986..4eb5540cad 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 c361f510ae..b87f8f0c22 100644 --- a/apps/desktop/src/i18n/locales/ff/messages.po +++ b/apps/desktop/src/i18n/locales/ff/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ff/messages.ts b/apps/desktop/src/i18n/locales/ff/messages.ts index f0a748d8c3..555001cc0c 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 cd7726335b..7ca8d9f1ee 100644 --- a/apps/desktop/src/i18n/locales/fi/messages.po +++ b/apps/desktop/src/i18n/locales/fi/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/fi/messages.ts b/apps/desktop/src/i18n/locales/fi/messages.ts index 4aa24a8573..5d576327fb 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 792c2bf00d..8b36cdbd03 100644 --- a/apps/desktop/src/i18n/locales/fo/messages.po +++ b/apps/desktop/src/i18n/locales/fo/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/fo/messages.ts b/apps/desktop/src/i18n/locales/fo/messages.ts index 82bbfb49b7..f58ce54ebb 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 a4efb266f5..50753df290 100644 --- a/apps/desktop/src/i18n/locales/fr/messages.po +++ b/apps/desktop/src/i18n/locales/fr/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/fr/messages.ts b/apps/desktop/src/i18n/locales/fr/messages.ts index 711a7a532b..4f87fb79a6 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 b0b2cdbe93..25d9bb4301 100644 --- a/apps/desktop/src/i18n/locales/ga/messages.po +++ b/apps/desktop/src/i18n/locales/ga/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ga/messages.ts b/apps/desktop/src/i18n/locales/ga/messages.ts index 22e5dc4a56..6dc2690c57 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 b8572d179d..0ee70f264c 100644 --- a/apps/desktop/src/i18n/locales/gl/messages.po +++ b/apps/desktop/src/i18n/locales/gl/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/gl/messages.ts b/apps/desktop/src/i18n/locales/gl/messages.ts index 1c97170d50..23a6eb6575 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 041fb060dc..1253ee77ad 100644 --- a/apps/desktop/src/i18n/locales/gu/messages.po +++ b/apps/desktop/src/i18n/locales/gu/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/gu/messages.ts b/apps/desktop/src/i18n/locales/gu/messages.ts index 26912ec867..b17351698d 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 b2464554f5..7e55a738e0 100644 --- a/apps/desktop/src/i18n/locales/ha/messages.po +++ b/apps/desktop/src/i18n/locales/ha/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ha/messages.ts b/apps/desktop/src/i18n/locales/ha/messages.ts index b54d70527e..56cfdc980d 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 15667dba76..fbaf144536 100644 --- a/apps/desktop/src/i18n/locales/he/messages.po +++ b/apps/desktop/src/i18n/locales/he/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/he/messages.ts b/apps/desktop/src/i18n/locales/he/messages.ts index a0b74cb1d4..2cb315d4b8 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 ffda3b32be..9692a561fc 100644 --- a/apps/desktop/src/i18n/locales/hi/messages.po +++ b/apps/desktop/src/i18n/locales/hi/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/hi/messages.ts b/apps/desktop/src/i18n/locales/hi/messages.ts index d9f5f6bb91..9a26d55ff7 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 f08fe4a97e..6f45c76cc3 100644 --- a/apps/desktop/src/i18n/locales/hr/messages.po +++ b/apps/desktop/src/i18n/locales/hr/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/hr/messages.ts b/apps/desktop/src/i18n/locales/hr/messages.ts index eb67993309..1bb4df6458 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 19a016d600..5a7d13e8d1 100644 --- a/apps/desktop/src/i18n/locales/ht/messages.po +++ b/apps/desktop/src/i18n/locales/ht/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ht/messages.ts b/apps/desktop/src/i18n/locales/ht/messages.ts index 7dd3d7faa6..6ddbac6958 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 e634f32d39..7c1eb9d326 100644 --- a/apps/desktop/src/i18n/locales/hu/messages.po +++ b/apps/desktop/src/i18n/locales/hu/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/hu/messages.ts b/apps/desktop/src/i18n/locales/hu/messages.ts index 41209175f6..b1630b79e8 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 7bb2cccf7d..a44182db6a 100644 --- a/apps/desktop/src/i18n/locales/hy/messages.po +++ b/apps/desktop/src/i18n/locales/hy/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/hy/messages.ts b/apps/desktop/src/i18n/locales/hy/messages.ts index f725e2ce23..aa607c51a2 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 f90c00d650..c14ca81994 100644 --- a/apps/desktop/src/i18n/locales/id/messages.po +++ b/apps/desktop/src/i18n/locales/id/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/id/messages.ts b/apps/desktop/src/i18n/locales/id/messages.ts index 8be9a8ff1c..b34abf64e8 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 0af72e4aa7..ecbd11bd69 100644 --- a/apps/desktop/src/i18n/locales/ig/messages.po +++ b/apps/desktop/src/i18n/locales/ig/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ig/messages.ts b/apps/desktop/src/i18n/locales/ig/messages.ts index fe9e8df056..425e76c5d1 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 21258f7b36..f278f22a10 100644 --- a/apps/desktop/src/i18n/locales/is/messages.po +++ b/apps/desktop/src/i18n/locales/is/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/is/messages.ts b/apps/desktop/src/i18n/locales/is/messages.ts index 9854e6bce2..1eea606d18 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 33dac072aa..ce18cb2055 100644 --- a/apps/desktop/src/i18n/locales/it/messages.po +++ b/apps/desktop/src/i18n/locales/it/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/it/messages.ts b/apps/desktop/src/i18n/locales/it/messages.ts index 287dcc1774..128bb38b1a 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 257bce17bd..f66eb5c168 100644 --- a/apps/desktop/src/i18n/locales/ja/messages.po +++ b/apps/desktop/src/i18n/locales/ja/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ja/messages.ts b/apps/desktop/src/i18n/locales/ja/messages.ts index c765103290..6bd1a749de 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 280216840b..0b1715a5fb 100644 --- a/apps/desktop/src/i18n/locales/jv/messages.po +++ b/apps/desktop/src/i18n/locales/jv/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/jv/messages.ts b/apps/desktop/src/i18n/locales/jv/messages.ts index 7df54865a1..a6ad4986b6 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 c8b217a665..cb994be98b 100644 --- a/apps/desktop/src/i18n/locales/ka/messages.po +++ b/apps/desktop/src/i18n/locales/ka/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ka/messages.ts b/apps/desktop/src/i18n/locales/ka/messages.ts index 8ffb06e022..677fa0fa34 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 41d3f8faf3..e71863ce3d 100644 --- a/apps/desktop/src/i18n/locales/kk/messages.po +++ b/apps/desktop/src/i18n/locales/kk/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/kk/messages.ts b/apps/desktop/src/i18n/locales/kk/messages.ts index 08ad009aea..60527998d0 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 81c045efe8..4ab5c19ac6 100644 --- a/apps/desktop/src/i18n/locales/km/messages.po +++ b/apps/desktop/src/i18n/locales/km/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/km/messages.ts b/apps/desktop/src/i18n/locales/km/messages.ts index 012513521b..04525029ac 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 bf621ae968..a99d7f7bff 100644 --- a/apps/desktop/src/i18n/locales/kn/messages.po +++ b/apps/desktop/src/i18n/locales/kn/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/kn/messages.ts b/apps/desktop/src/i18n/locales/kn/messages.ts index ccd2288979..151a297a7b 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 4b390029bc..7dcb9ba7c3 100644 --- a/apps/desktop/src/i18n/locales/ko/messages.po +++ b/apps/desktop/src/i18n/locales/ko/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ko/messages.ts b/apps/desktop/src/i18n/locales/ko/messages.ts index 49d4f0b47f..0c64010e93 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 910d3d3b65..8fdb6b7c95 100644 --- a/apps/desktop/src/i18n/locales/ku/messages.po +++ b/apps/desktop/src/i18n/locales/ku/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ku/messages.ts b/apps/desktop/src/i18n/locales/ku/messages.ts index f94635af7d..a528c41fac 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 d3cdac8ee1..52862b03ed 100644 --- a/apps/desktop/src/i18n/locales/ky/messages.po +++ b/apps/desktop/src/i18n/locales/ky/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ky/messages.ts b/apps/desktop/src/i18n/locales/ky/messages.ts index 1eff167656..360fc2225f 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 05c37de36d..7fbf541274 100644 --- a/apps/desktop/src/i18n/locales/la/messages.po +++ b/apps/desktop/src/i18n/locales/la/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/la/messages.ts b/apps/desktop/src/i18n/locales/la/messages.ts index 10c341b6d7..2144fda396 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 72fab0fe5c..fe6bfcfde1 100644 --- a/apps/desktop/src/i18n/locales/lb/messages.po +++ b/apps/desktop/src/i18n/locales/lb/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/lb/messages.ts b/apps/desktop/src/i18n/locales/lb/messages.ts index 9b4d8b2702..fc4ee9de74 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 51e7fa275e..5bab6b9fa2 100644 --- a/apps/desktop/src/i18n/locales/lg/messages.po +++ b/apps/desktop/src/i18n/locales/lg/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/lg/messages.ts b/apps/desktop/src/i18n/locales/lg/messages.ts index 050124c2fd..d7f131092c 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 a3e2ee990c..13e0a01594 100644 --- a/apps/desktop/src/i18n/locales/ln/messages.po +++ b/apps/desktop/src/i18n/locales/ln/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ln/messages.ts b/apps/desktop/src/i18n/locales/ln/messages.ts index 8c0c0bd04b..55664570c0 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 cf37e827a9..062f685b3a 100644 --- a/apps/desktop/src/i18n/locales/lo/messages.po +++ b/apps/desktop/src/i18n/locales/lo/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/lo/messages.ts b/apps/desktop/src/i18n/locales/lo/messages.ts index 8f69ddb0d4..8d8863fba0 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 d324d1490c..488b60e8eb 100644 --- a/apps/desktop/src/i18n/locales/lt/messages.po +++ b/apps/desktop/src/i18n/locales/lt/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/lt/messages.ts b/apps/desktop/src/i18n/locales/lt/messages.ts index f9b7dd5c6e..03d923719a 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 64ce3483e2..680f7afe0e 100644 --- a/apps/desktop/src/i18n/locales/lv/messages.po +++ b/apps/desktop/src/i18n/locales/lv/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/lv/messages.ts b/apps/desktop/src/i18n/locales/lv/messages.ts index 4a32aa80c7..968cd61588 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 547f0ed48a..6395c3997b 100644 --- a/apps/desktop/src/i18n/locales/mg/messages.po +++ b/apps/desktop/src/i18n/locales/mg/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/mg/messages.ts b/apps/desktop/src/i18n/locales/mg/messages.ts index b3a2c27a0d..6250f7786b 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 e29e034cc2..9e8900035e 100644 --- a/apps/desktop/src/i18n/locales/mi/messages.po +++ b/apps/desktop/src/i18n/locales/mi/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/mi/messages.ts b/apps/desktop/src/i18n/locales/mi/messages.ts index f7b4dd838e..78c613869f 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 52fcef650d..519a712bfb 100644 --- a/apps/desktop/src/i18n/locales/mk/messages.po +++ b/apps/desktop/src/i18n/locales/mk/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/mk/messages.ts b/apps/desktop/src/i18n/locales/mk/messages.ts index 90f2a629a6..4021b46fef 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 eaec8f5932..5af795343d 100644 --- a/apps/desktop/src/i18n/locales/ml/messages.po +++ b/apps/desktop/src/i18n/locales/ml/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ml/messages.ts b/apps/desktop/src/i18n/locales/ml/messages.ts index 0100a5399f..5796aabdac 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 affb16063e..e3999f8907 100644 --- a/apps/desktop/src/i18n/locales/mn/messages.po +++ b/apps/desktop/src/i18n/locales/mn/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/mn/messages.ts b/apps/desktop/src/i18n/locales/mn/messages.ts index 64dfa88702..f625bca40a 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 b59843858d..8c4b291088 100644 --- a/apps/desktop/src/i18n/locales/mr/messages.po +++ b/apps/desktop/src/i18n/locales/mr/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/mr/messages.ts b/apps/desktop/src/i18n/locales/mr/messages.ts index 306b045fea..6fdf59a74d 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 b86534efe3..4dc8b18e40 100644 --- a/apps/desktop/src/i18n/locales/ms/messages.po +++ b/apps/desktop/src/i18n/locales/ms/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ms/messages.ts b/apps/desktop/src/i18n/locales/ms/messages.ts index f93f5c7c3a..e5afb3768c 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 76d242b1c0..fa649c14fd 100644 --- a/apps/desktop/src/i18n/locales/mt/messages.po +++ b/apps/desktop/src/i18n/locales/mt/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/mt/messages.ts b/apps/desktop/src/i18n/locales/mt/messages.ts index 44b33ad931..90fec29f92 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 eedb869a0b..43099225f0 100644 --- a/apps/desktop/src/i18n/locales/my/messages.po +++ b/apps/desktop/src/i18n/locales/my/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/my/messages.ts b/apps/desktop/src/i18n/locales/my/messages.ts index ee40bc21c3..345a73bdf6 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 75396534d2..dcd827edfb 100644 --- a/apps/desktop/src/i18n/locales/ne/messages.po +++ b/apps/desktop/src/i18n/locales/ne/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ne/messages.ts b/apps/desktop/src/i18n/locales/ne/messages.ts index 82255f0459..ada5d3c7d4 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 c691b6dcff..78f3466bdc 100644 --- a/apps/desktop/src/i18n/locales/nl/messages.po +++ b/apps/desktop/src/i18n/locales/nl/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/nl/messages.ts b/apps/desktop/src/i18n/locales/nl/messages.ts index 0d8a30fee8..fc639a6944 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 8a57e2bfcc..666e4ca0fd 100644 --- a/apps/desktop/src/i18n/locales/nn/messages.po +++ b/apps/desktop/src/i18n/locales/nn/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/nn/messages.ts b/apps/desktop/src/i18n/locales/nn/messages.ts index 2a082c8aae..0ced3705d2 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 c5777a5069..dbfb9383fa 100644 --- a/apps/desktop/src/i18n/locales/no/messages.po +++ b/apps/desktop/src/i18n/locales/no/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/no/messages.ts b/apps/desktop/src/i18n/locales/no/messages.ts index 2a082c8aae..0ced3705d2 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 e9762231d7..21346c9c0c 100644 --- a/apps/desktop/src/i18n/locales/ny/messages.po +++ b/apps/desktop/src/i18n/locales/ny/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ny/messages.ts b/apps/desktop/src/i18n/locales/ny/messages.ts index ca6fc54b82..c2a1bed387 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 90991ede1a..a033437ba2 100644 --- a/apps/desktop/src/i18n/locales/oc/messages.po +++ b/apps/desktop/src/i18n/locales/oc/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/oc/messages.ts b/apps/desktop/src/i18n/locales/oc/messages.ts index 7bef61799d..a8380c574b 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 13b706c0df..fc5098b0c9 100644 --- a/apps/desktop/src/i18n/locales/or/messages.po +++ b/apps/desktop/src/i18n/locales/or/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/or/messages.ts b/apps/desktop/src/i18n/locales/or/messages.ts index 303e9722e6..096dc0150c 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 85fb3ffd7d..2808e461a4 100644 --- a/apps/desktop/src/i18n/locales/pa/messages.po +++ b/apps/desktop/src/i18n/locales/pa/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/pa/messages.ts b/apps/desktop/src/i18n/locales/pa/messages.ts index f61f7a52c6..a146508e44 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 0c83d2bb87..0bd6309137 100644 --- a/apps/desktop/src/i18n/locales/pl/messages.po +++ b/apps/desktop/src/i18n/locales/pl/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/pl/messages.ts b/apps/desktop/src/i18n/locales/pl/messages.ts index 6ceb0f0e1e..455279b830 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 b263a36cb1..b928525da7 100644 --- a/apps/desktop/src/i18n/locales/ps/messages.po +++ b/apps/desktop/src/i18n/locales/ps/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ps/messages.ts b/apps/desktop/src/i18n/locales/ps/messages.ts index b2199007d5..9dfdf40126 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 b4a51945c3..09d3e42c14 100644 --- a/apps/desktop/src/i18n/locales/pt/messages.po +++ b/apps/desktop/src/i18n/locales/pt/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/pt/messages.ts b/apps/desktop/src/i18n/locales/pt/messages.ts index e5c7170fd4..dcfb617a1f 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 e3f9bcb2cc..c8ee32f522 100644 --- a/apps/desktop/src/i18n/locales/ro/messages.po +++ b/apps/desktop/src/i18n/locales/ro/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ro/messages.ts b/apps/desktop/src/i18n/locales/ro/messages.ts index 3339bee730..600a644a96 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 2866ea9242..04273e5dbc 100644 --- a/apps/desktop/src/i18n/locales/ru/messages.po +++ b/apps/desktop/src/i18n/locales/ru/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ru/messages.ts b/apps/desktop/src/i18n/locales/ru/messages.ts index 6ef8a768d0..728fd69ba6 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 4bc7d495c8..612dd33516 100644 --- a/apps/desktop/src/i18n/locales/sa/messages.po +++ b/apps/desktop/src/i18n/locales/sa/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/sa/messages.ts b/apps/desktop/src/i18n/locales/sa/messages.ts index 966bb9a3d7..f99f800a06 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 a9c1e7b525..3a429c08d9 100644 --- a/apps/desktop/src/i18n/locales/sd/messages.po +++ b/apps/desktop/src/i18n/locales/sd/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/sd/messages.ts b/apps/desktop/src/i18n/locales/sd/messages.ts index 9ded63270d..d60d249f18 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 e20991999c..f1189bdcc7 100644 --- a/apps/desktop/src/i18n/locales/si/messages.po +++ b/apps/desktop/src/i18n/locales/si/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/si/messages.ts b/apps/desktop/src/i18n/locales/si/messages.ts index ba46520144..0b523719e2 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 f7453556c8..6d32d76ac6 100644 --- a/apps/desktop/src/i18n/locales/sk/messages.po +++ b/apps/desktop/src/i18n/locales/sk/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/sk/messages.ts b/apps/desktop/src/i18n/locales/sk/messages.ts index 5530457689..55fa21f613 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 408a0ae9e0..ec225f4373 100644 --- a/apps/desktop/src/i18n/locales/sl/messages.po +++ b/apps/desktop/src/i18n/locales/sl/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/sl/messages.ts b/apps/desktop/src/i18n/locales/sl/messages.ts index 392107ff74..82ad164506 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 37d56ea381..2bf89e90c2 100644 --- a/apps/desktop/src/i18n/locales/sn/messages.po +++ b/apps/desktop/src/i18n/locales/sn/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/sn/messages.ts b/apps/desktop/src/i18n/locales/sn/messages.ts index 6bbd00aecd..cc50a4ad0b 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 2e49828040..fe65d58211 100644 --- a/apps/desktop/src/i18n/locales/so/messages.po +++ b/apps/desktop/src/i18n/locales/so/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/so/messages.ts b/apps/desktop/src/i18n/locales/so/messages.ts index ca3d0362f9..8d87816fb7 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 f29b597dc9..a18f412c60 100644 --- a/apps/desktop/src/i18n/locales/sq/messages.po +++ b/apps/desktop/src/i18n/locales/sq/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/sq/messages.ts b/apps/desktop/src/i18n/locales/sq/messages.ts index abf7ba4879..7574d46d2c 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 1b8215662f..27585d0a73 100644 --- a/apps/desktop/src/i18n/locales/sr/messages.po +++ b/apps/desktop/src/i18n/locales/sr/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/sr/messages.ts b/apps/desktop/src/i18n/locales/sr/messages.ts index 72449a643a..76884ab9e3 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 b9b1c05f95..20a459a43e 100644 --- a/apps/desktop/src/i18n/locales/su/messages.po +++ b/apps/desktop/src/i18n/locales/su/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/su/messages.ts b/apps/desktop/src/i18n/locales/su/messages.ts index 00dd20d34f..c9c5514180 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 bc384094d8..87987a6b64 100644 --- a/apps/desktop/src/i18n/locales/sv/messages.po +++ b/apps/desktop/src/i18n/locales/sv/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/sv/messages.ts b/apps/desktop/src/i18n/locales/sv/messages.ts index 7b66d1d70b..22dd7a11a4 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 656830ef13..26cc519729 100644 --- a/apps/desktop/src/i18n/locales/sw/messages.po +++ b/apps/desktop/src/i18n/locales/sw/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/sw/messages.ts b/apps/desktop/src/i18n/locales/sw/messages.ts index 66830075ee..001f5eff43 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 d77d2a2414..3d14b41e92 100644 --- a/apps/desktop/src/i18n/locales/ta/messages.po +++ b/apps/desktop/src/i18n/locales/ta/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ta/messages.ts b/apps/desktop/src/i18n/locales/ta/messages.ts index 5012e8d77a..7012f5a9de 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 baeb93bc27..8d25916b0e 100644 --- a/apps/desktop/src/i18n/locales/te/messages.po +++ b/apps/desktop/src/i18n/locales/te/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/te/messages.ts b/apps/desktop/src/i18n/locales/te/messages.ts index 987fd09eb6..3e28e03026 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 35fd0aeb03..acf0b29622 100644 --- a/apps/desktop/src/i18n/locales/tg/messages.po +++ b/apps/desktop/src/i18n/locales/tg/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/tg/messages.ts b/apps/desktop/src/i18n/locales/tg/messages.ts index d5cfbdb799..0e1a0f3afa 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 e0380448b8..9489c5ae51 100644 --- a/apps/desktop/src/i18n/locales/th/messages.po +++ b/apps/desktop/src/i18n/locales/th/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/th/messages.ts b/apps/desktop/src/i18n/locales/th/messages.ts index f6269446cb..049d11f124 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 e29fe1c004..8d1cdc6e2a 100644 --- a/apps/desktop/src/i18n/locales/tk/messages.po +++ b/apps/desktop/src/i18n/locales/tk/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/tk/messages.ts b/apps/desktop/src/i18n/locales/tk/messages.ts index 7e335a9b00..bff41ae61f 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 22c3576757..e42a011d69 100644 --- a/apps/desktop/src/i18n/locales/tl/messages.po +++ b/apps/desktop/src/i18n/locales/tl/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/tl/messages.ts b/apps/desktop/src/i18n/locales/tl/messages.ts index d8a96d055e..70a42782bd 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 61c6e909c6..1d3d965961 100644 --- a/apps/desktop/src/i18n/locales/tr/messages.po +++ b/apps/desktop/src/i18n/locales/tr/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/tr/messages.ts b/apps/desktop/src/i18n/locales/tr/messages.ts index 31f255ad07..4661ecfcad 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 a216577702..ef0ce6f452 100644 --- a/apps/desktop/src/i18n/locales/tt/messages.po +++ b/apps/desktop/src/i18n/locales/tt/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/tt/messages.ts b/apps/desktop/src/i18n/locales/tt/messages.ts index 22e2b7c1c1..16d77d5aa3 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 58be66a949..18804a3648 100644 --- a/apps/desktop/src/i18n/locales/uk/messages.po +++ b/apps/desktop/src/i18n/locales/uk/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/uk/messages.ts b/apps/desktop/src/i18n/locales/uk/messages.ts index a225e3e558..5e41ae46fe 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 87df9bb673..e00e9a7f78 100644 --- a/apps/desktop/src/i18n/locales/ur/messages.po +++ b/apps/desktop/src/i18n/locales/ur/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ur/messages.ts b/apps/desktop/src/i18n/locales/ur/messages.ts index 52962c1a5d..6b79e51d45 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 25af8b66a1..b3ea8c5a48 100644 --- a/apps/desktop/src/i18n/locales/uz/messages.po +++ b/apps/desktop/src/i18n/locales/uz/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/uz/messages.ts b/apps/desktop/src/i18n/locales/uz/messages.ts index 6e1509e8e5..2d5e3b28f3 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 fd8e0e7eaa..0cbb40b921 100644 --- a/apps/desktop/src/i18n/locales/vi/messages.po +++ b/apps/desktop/src/i18n/locales/vi/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/vi/messages.ts b/apps/desktop/src/i18n/locales/vi/messages.ts index 8a68ac2e45..4b4405519d 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 e85c94215d..f65a346c63 100644 --- a/apps/desktop/src/i18n/locales/wo/messages.po +++ b/apps/desktop/src/i18n/locales/wo/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/wo/messages.ts b/apps/desktop/src/i18n/locales/wo/messages.ts index 4253665939..88180acf4b 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 342aac4cee..631018e03e 100644 --- a/apps/desktop/src/i18n/locales/xh/messages.po +++ b/apps/desktop/src/i18n/locales/xh/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/xh/messages.ts b/apps/desktop/src/i18n/locales/xh/messages.ts index 37140e1cab..e749f6dd81 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 96a6f5c8d4..c357428f62 100644 --- a/apps/desktop/src/i18n/locales/yi/messages.po +++ b/apps/desktop/src/i18n/locales/yi/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/yi/messages.ts b/apps/desktop/src/i18n/locales/yi/messages.ts index f9d1242cd0..17533f6663 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 49e40eebff..2add7be30a 100644 --- a/apps/desktop/src/i18n/locales/yo/messages.po +++ b/apps/desktop/src/i18n/locales/yo/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/yo/messages.ts b/apps/desktop/src/i18n/locales/yo/messages.ts index 62b27b9386..395b5eccbd 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 ced3f8e7ad..0c925a1cde 100644 --- a/apps/desktop/src/i18n/locales/zh/messages.po +++ b/apps/desktop/src/i18n/locales/zh/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/zh/messages.ts b/apps/desktop/src/i18n/locales/zh/messages.ts index f400db091a..6a33ba6253 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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 bd25bed5bd..833442f468 100644 --- a/apps/desktop/src/i18n/locales/zu/messages.po +++ b/apps/desktop/src/i18n/locales/zu/messages.po @@ -2308,6 +2308,10 @@ msgstr "" msgid "Last import: {0} added, {1} unchanged" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Last meeting" +msgstr "" + #. placeholder {0}: lastRun.detail #: src/settings/automations/starter-config.tsx msgid "Last run {relative}: {0}" @@ -2816,6 +2820,10 @@ msgstr "" msgid "No people in this organization" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "No previous meeting summary is available. Calendar details are shown above." +msgstr "" + #: src/settings/ai/llm/configure.tsx #: src/settings/ai/stt/configure.tsx msgid "No providers found." @@ -3183,6 +3191,10 @@ msgstr "" msgid "Post to a channel" msgstr "" +#: src/session/components/note-input/pre-meeting-brief.tsx +msgid "Pre-meeting brief" +msgstr "" + #: src/settings/general/notification.tsx msgid "Prepare for events with a 5-minute reminder." msgstr "" diff --git a/apps/desktop/src/i18n/locales/zu/messages.ts b/apps/desktop/src/i18n/locales/zu/messages.ts index d7df715c09..a59d204994 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\"],\"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 +/*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...\"],\"SPOFKN\":[\"Last meeting\"],\"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\"],\"sl8sQn\":[\"Pre-meeting brief\"],\"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\"],\"wVib2D\":[\"No previous meeting summary is available. Calendar details are shown above.\"],\"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/services/event-notification/index.test.ts b/apps/desktop/src/services/event-notification/index.test.ts index 057f306903..2fce9742b4 100644 --- a/apps/desktop/src/services/event-notification/index.test.ts +++ b/apps/desktop/src/services/event-notification/index.test.ts @@ -25,6 +25,8 @@ import { checkEventNotifications } from "."; describe("checkEventNotifications", () => { beforeEach(() => { vi.clearAllMocks(); + mocks.execute.mockReset(); + mocks.execute.mockResolvedValue([]); vi.spyOn(Date, "now").mockReturnValue( new Date("2026-05-15T12:00:00.000Z").getTime(), ); @@ -40,8 +42,9 @@ describe("checkEventNotifications", () => { id: "event-1", started_at: "2026-05-15T12:02:00.000Z", tracking_id_event: "tracking-1", - recurrence_series_id: "", + recurrence_series_id: "series-1", title: "Design Review", + is_all_day: 0, }, ]); @@ -55,8 +58,12 @@ describe("checkEventNotifications", () => { event_details: null, options: null, footer: null, + message: "Starting in 2 minutes", + start_time: new Date("2026-05-15T12:02:00.000Z").getTime() / 1000, + timeout: null, }), ); + expect(mocks.execute.mock.calls[0]?.[0]).toContain("is_all_day = 0"); }); test("does not query or notify when event notifications are disabled", async () => { @@ -78,6 +85,24 @@ describe("checkEventNotifications", () => { tracking_id_event: "tracking-1", recurrence_series_id: "", title: "Design Review", + is_all_day: 0, + }, + ]); + + await checkEventNotifications(true, new Map()); + + expect(mocks.showNotification).not.toHaveBeenCalled(); + }); + + test("skips all-day events even if the query returns one", async () => { + mocks.execute.mockResolvedValueOnce([ + { + id: "event-1", + started_at: "2026-05-15T12:02:00.000Z", + tracking_id_event: "tracking-1", + recurrence_series_id: "", + title: "Company holiday", + is_all_day: 1, }, ]); diff --git a/apps/desktop/src/services/event-notification/index.ts b/apps/desktop/src/services/event-notification/index.ts index f1eb36be41..3964e2b7b4 100644 --- a/apps/desktop/src/services/event-notification/index.ts +++ b/apps/desktop/src/services/event-notification/index.ts @@ -19,6 +19,7 @@ type NotificationEventRow = { started_at: string; tracking_id_event: string; recurrence_series_id: string; + is_all_day: boolean | number; }; export async function checkEventNotifications( @@ -40,14 +41,19 @@ export async function checkEventNotifications( title, started_at, tracking_id_event, - recurrence_series_id + recurrence_series_id, + is_all_day FROM events - WHERE deleted_at IS NULL AND started_at <> '' + WHERE deleted_at IS NULL AND started_at <> '' AND is_all_day = 0 ORDER BY started_at, id `), ]); for (const event of events) { + if (Boolean(event.is_all_day)) { + continue; + } + const startTime = new Date(event.started_at); const timeUntilStart = startTime.getTime() - now; const notificationKey = `event-${event.id}-${startTime.getTime()}`; diff --git a/apps/desktop/src/session/components/note-input/index.test.tsx b/apps/desktop/src/session/components/note-input/index.test.tsx index cf3cf00a6b..24d83b9c77 100644 --- a/apps/desktop/src/session/components/note-input/index.test.tsx +++ b/apps/desktop/src/session/components/note-input/index.test.tsx @@ -13,6 +13,7 @@ const hoisted = vi.hoisted(() => ({ focusAtTrailingEmptyLine: vi.fn(), flushPendingChanges: vi.fn(), onBeforeTabChange: vi.fn(), + preMeetingBriefProps: [] as Record[], rawEditorProps: [] as Record[], registerCanonicalSessionEditor: vi.fn(), sessionMode: "inactive", @@ -88,6 +89,13 @@ vi.mock("./raw", async () => { }; }); +vi.mock("./pre-meeting-brief", () => ({ + PreMeetingBrief: (props: Record) => { + hoisted.preMeetingBriefProps.push(props); + return
; + }, +})); + vi.mock("./search/bar", () => ({ SearchBar: () =>
, })); @@ -215,6 +223,7 @@ describe("NoteInput tab selection", () => { hoisted.focusAtTrailingEmptyLine.mockClear(); hoisted.flushPendingChanges.mockClear(); hoisted.onBeforeTabChange.mockClear(); + hoisted.preMeetingBriefProps = []; hoisted.rawEditorProps = []; hoisted.registerCanonicalSessionEditor.mockClear(); hoisted.sessionMode = "inactive"; @@ -342,6 +351,28 @@ describe("NoteInput tab selection", () => { }); }); + it("enables the pre-meeting brief only for inactive sessions", () => { + renderNoteInput(); + + expect( + hoisted.preMeetingBriefProps[hoisted.preMeetingBriefProps.length - 1], + ).toEqual({ + enabled: true, + sessionId: "session-1", + }); + + cleanup(); + hoisted.sessionMode = "active"; + renderNoteInput(); + + expect( + hoisted.preMeetingBriefProps[hoisted.preMeetingBriefProps.length - 1], + ).toEqual({ + enabled: false, + sessionId: "session-1", + }); + }); + it("tracks the mounted memo editor until its view is disposed", () => { renderNoteInput(); const props = hoisted.rawEditorProps[hoisted.rawEditorProps.length - 1] as { @@ -422,6 +453,14 @@ describe("NoteInput tab selection", () => { expect(hoisted.focusAtTrailingEmptyLine).not.toHaveBeenCalled(); }); + it("does not focus the editor when the pre-meeting brief is selected", () => { + renderNoteInput(); + + fireEvent.mouseDown(screen.getByTestId("pre-meeting-brief"), { button: 0 }); + + expect(hoisted.focusAtTrailingEmptyLine).not.toHaveBeenCalled(); + }); + it("preserves controls when the enhanced view has no editor", () => { hoisted.editorTabs = [ { type: "enhanced", id: "summary-1" }, diff --git a/apps/desktop/src/session/components/note-input/index.tsx b/apps/desktop/src/session/components/note-input/index.tsx index cacfa36c67..a0ad3d7818 100644 --- a/apps/desktop/src/session/components/note-input/index.tsx +++ b/apps/desktop/src/session/components/note-input/index.tsx @@ -16,6 +16,7 @@ import { cn } from "@anlg/utils"; import { Enhanced } from "./enhanced"; import { Header, SessionViewSwitcher, useEditorTabs } from "./header"; +import { PreMeetingBrief } from "./pre-meeting-brief"; import { RawEditor } from "./raw"; import { SearchBar } from "./search/bar"; import { useSearch } from "./search/context"; @@ -292,7 +293,7 @@ const NoteInputContent = forwardRef< if ( target.closest( - "button, a, input, textarea, select, [role='button'], [contenteditable='true']", + "button, a, input, textarea, select, [role='button'], [contenteditable='true'], [data-pre-meeting-brief]", ) !== null ) { return; @@ -370,17 +371,23 @@ const NoteInputContent = forwardRef< /> )} {renderedCurrentTab.type === "raw" && ( - + <> + + + )} {renderedCurrentTab.type === "transcript" && ( ({ + event: { + title: "Weekly Product Sync", + started_at: "2026-08-21T09:00:00.000Z", + ended_at: "2026-08-21T10:00:00.000Z", + is_all_day: false, + location: "Studio", + description: "Review the launch plan and open questions.", + } as { + title: string; + started_at: string; + ended_at: string; + is_all_day: boolean; + location?: string; + description?: string; + } | null, + now: new Date("2026-08-21T08:00:00.000Z"), + notes: [] as PastSessionNote[], + participants: [ + { name: "Ada", email: "ada@example.com" }, + { name: "Current User", is_current_user: true }, + ], +})); + +vi.mock("@lingui/react/macro", () => ({ + Trans: ({ children }: { children?: ReactNode }) => <>{children}, + useLingui: () => ({ i18n: { locale: "en-US" } }), +})); + +vi.mock("~/calendar/hooks", () => ({ + useNow: () => mocks.now, +})); + +vi.mock("~/calendar/queries", () => ({ + useSessionCalendarEvent: () => + mocks.event ? { ...mocks.event, participants: mocks.participants } : null, +})); + +vi.mock("~/session/insights/past-notes", () => ({ + usePastSessionNotes: () => ({ + notes: mocks.notes, + hasPastNotes: mocks.notes.length > 0, + isGenerating: false, + canGenerate: false, + regenerate: vi.fn(), + regenerateAll: vi.fn(), + }), +})); + +vi.mock("~/shared/config", () => ({ + useConfigValue: () => "UTC", +})); + +import { + PreMeetingBrief, + shouldShowPreMeetingBrief, +} from "./pre-meeting-brief"; + +describe("PreMeetingBrief", () => { + beforeEach(() => { + mocks.event = { + title: "Weekly Product Sync", + started_at: "2026-08-21T09:00:00.000Z", + ended_at: "2026-08-21T10:00:00.000Z", + is_all_day: false, + location: "Studio", + description: "Review the launch plan and open questions.", + }; + mocks.now = new Date("2026-08-21T08:00:00.000Z"); + mocks.notes = []; + mocks.participants = [ + { name: "Ada", email: "ada@example.com" }, + { name: "Current User", is_current_user: true }, + ]; + }); + + afterEach(cleanup); + + it("shows calendar details and facts from the latest related meeting", () => { + mocks.notes = [ + { + sessionId: "previous", + title: "Weekly Product Sync", + dateLabel: "Aug 14, 2026", + occurredAt: "2026-08-14T09:00:00.000Z", + participantNames: ["Ada"], + sourceSummary: "A longer raw summary.", + relationship: "same_series", + summary: + "- Ada will share the prototype.\n- Confirm launch timing with Sam.", + isGenerating: false, + }, + ]; + + render(); + + expect(screen.getByText("Pre-meeting brief")).toBeTruthy(); + expect(screen.getByText("Studio")).toBeTruthy(); + expect(screen.getByText("Ada")).toBeTruthy(); + expect( + screen.getByText("Review the launch plan and open questions."), + ).toBeTruthy(); + expect(screen.getByText("Last meeting · Aug 14, 2026")).toBeTruthy(); + expect(screen.getByText("Ada will share the prototype.")).toBeTruthy(); + expect(screen.getByText("Confirm launch timing with Sam.")).toBeTruthy(); + expect(screen.queryByText("Current User")).toBeNull(); + }); + + it("uses source summary text while generated facts are unavailable", () => { + mocks.notes = [ + { + sessionId: "previous", + title: "Weekly Product Sync", + dateLabel: "Aug 14, 2026", + occurredAt: "2026-08-14T09:00:00.000Z", + sourceSummary: "Decided to ship the smaller onboarding experiment.", + relationship: "same_series", + summary: null, + isGenerating: false, + }, + ]; + + render(); + + expect( + screen.getByText("Decided to ship the smaller onboarding experiment."), + ).toBeTruthy(); + }); + + it("does not present title-only matches as prior meeting history", () => { + mocks.notes = [ + { + sessionId: "possible-match", + title: "Weekly Product Sync", + dateLabel: "Aug 14, 2026", + occurredAt: "2026-08-14T09:00:00.000Z", + sourceSummary: "Context from a different recurring meeting.", + relationship: "matching_title", + summary: null, + isGenerating: false, + }, + ]; + + render(); + + expect( + screen.queryByText("Context from a different recurring meeting."), + ).toBeNull(); + expect( + screen.getByText(/No previous meeting summary is available/), + ).toBeTruthy(); + }); + + it("handles meetings without prior summaries", () => { + render(); + + expect( + screen.getByText(/No previous meeting summary is available/), + ).toBeTruthy(); + }); + + it("stays hidden for past and all-day events", () => { + expect( + shouldShowPreMeetingBrief( + { + started_at: "2026-08-21T07:00:00.000Z", + ended_at: "2026-08-21T07:30:00.000Z", + is_all_day: false, + }, + mocks.now.getTime(), + ), + ).toBe(false); + expect( + shouldShowPreMeetingBrief( + { + started_at: "2026-08-21T07:58:00.000Z", + ended_at: "", + is_all_day: false, + }, + mocks.now.getTime(), + ), + ).toBe(true); + expect( + shouldShowPreMeetingBrief( + { + started_at: "2026-08-22T07:00:00.000Z", + ended_at: "2026-08-22T07:30:00.000Z", + is_all_day: true, + }, + mocks.now.getTime(), + ), + ).toBe(false); + + mocks.event = { + title: "Past meeting", + started_at: "2026-08-21T07:00:00.000Z", + ended_at: "2026-08-21T07:30:00.000Z", + is_all_day: false, + }; + render(); + + expect(screen.queryByText("Pre-meeting brief")).toBeNull(); + }); + + it("stays hidden when the canonical calendar event was removed", () => { + mocks.event = null; + + render(); + + expect(screen.queryByText("Pre-meeting brief")).toBeNull(); + }); +}); diff --git a/apps/desktop/src/session/components/note-input/pre-meeting-brief.tsx b/apps/desktop/src/session/components/note-input/pre-meeting-brief.tsx new file mode 100644 index 0000000000..b9e25c4be1 --- /dev/null +++ b/apps/desktop/src/session/components/note-input/pre-meeting-brief.tsx @@ -0,0 +1,247 @@ +import { Trans, useLingui } from "@lingui/react/macro"; +import { + CalendarBlank, + MapPin, + Sparkle, + UsersThree, +} from "@phosphor-icons/react"; + +import { cn, safeParseDate } from "@anlg/utils"; + +import { useNow } from "~/calendar/hooks"; +import { useSessionCalendarEvent } from "~/calendar/queries"; +import { usePastSessionNotes } from "~/session/insights/past-notes"; +import { + compactBriefText, + getPreMeetingBriefFacts, +} from "~/session/insights/pre-meeting"; +import { useConfigValue } from "~/shared/config"; + +const MAX_DESCRIPTION_LENGTH = 240; +const AFTER_START_GRACE_MS = 5 * 60 * 1000; + +export function PreMeetingBrief({ + sessionId, + enabled = true, +}: { + sessionId: string; + enabled?: boolean; +}) { + const { i18n } = useLingui(); + const event = useSessionCalendarEvent(sessionId, { enabled }); + const now = useNow(); + const timezone = useConfigValue("timezone") || undefined; + const visible = enabled && shouldShowPreMeetingBrief(event, now.getTime()); + const pastNotes = usePastSessionNotes(sessionId, { enabled: visible }); + + const participantNames = [ + ...new Set( + (event?.participants ?? []) + .filter((participant) => participant.is_current_user !== true) + .map( + (participant) => + participant.name?.trim() || participant.email?.trim() || "", + ) + .filter(Boolean), + ), + ].slice(0, 5); + + if (!visible || !event) { + return null; + } + + const latestNote = + pastNotes.notes.find((note) => note.relationship === "same_series") ?? null; + const facts = latestNote ? getPreMeetingBriefFacts(latestNote) : []; + const description = compactBriefText( + event.description ?? "", + MAX_DESCRIPTION_LENGTH, + ); + const location = compactBriefText(event.location ?? "", 120); + const eventTime = formatEventTime( + event.started_at, + event.ended_at, + timezone, + i18n.locale, + ); + const relatedDate = latestNote + ? formatBriefDate(latestNote.occurredAt, timezone, i18n.locale) + : ""; + + return ( +
+
+ +

+ Pre-meeting brief +

+
+ +
+ {eventTime ? ( + + + {eventTime} + + ) : null} + {location ? ( + + + {location} + + ) : null} + {participantNames.length > 0 ? ( + + + + {participantNames.join(", ")} + + + ) : null} +
+ + {description ? ( +

+ {description} +

+ ) : null} + +
+ {latestNote ? ( + <> +

+ Last meeting + {relatedDate ? ` · ${relatedDate}` : ""} +

+
    + {facts.map((fact) => ( +
  • + + {fact} +
  • + ))} +
+ + ) : ( +

+ + No previous meeting summary is available. Calendar details are + shown above. + +

+ )} +
+
+ ); +} + +export function shouldShowPreMeetingBrief( + event: { + started_at?: string; + ended_at?: string; + is_all_day?: boolean; + } | null, + nowMs: number, +): boolean { + if (!event || event.is_all_day) { + return false; + } + + const startMs = Date.parse(event.started_at ?? ""); + if (!Number.isFinite(startMs)) { + return false; + } + if (startMs > nowMs) { + return true; + } + + const endMs = Date.parse(event.ended_at ?? ""); + const hideAfterMs = Number.isFinite(endMs) + ? Math.max(endMs, startMs + AFTER_START_GRACE_MS) + : startMs + AFTER_START_GRACE_MS; + return hideAfterMs > nowMs; +} + +function formatEventTime( + startedAt: string, + endedAt: string, + timezone: string | undefined, + locale: string, +): string { + const rawStart = safeParseDate(startedAt); + if (!rawStart) { + return ""; + } + + const rawEnd = safeParseDate(endedAt); + const dateOptions = { + year: "numeric", + month: "2-digit", + day: "2-digit", + } satisfies Intl.DateTimeFormatOptions; + const dateTimeOptions = { + month: "short", + day: "numeric", + hour: "numeric", + minute: "2-digit", + } satisfies Intl.DateTimeFormatOptions; + const timeOptions = { + hour: "numeric", + minute: "2-digit", + } satisfies Intl.DateTimeFormatOptions; + const startText = formatDateTime(rawStart, locale, timezone, dateTimeOptions); + if (!rawEnd) { + return startText; + } + + const sameDay = + formatDateTime(rawStart, locale, timezone, dateOptions) === + formatDateTime(rawEnd, locale, timezone, dateOptions); + const endText = formatDateTime( + rawEnd, + locale, + timezone, + sameDay ? timeOptions : dateTimeOptions, + ); + return `${startText}–${endText}`; +} + +function formatBriefDate( + value: string, + timezone: string | undefined, + locale: string, +): string { + const date = safeParseDate(value); + return date + ? formatDateTime(date, locale, timezone, { + year: "numeric", + month: "short", + day: "numeric", + }) + : ""; +} + +function formatDateTime( + date: Date, + locale: string, + timezone: string | undefined, + options: Intl.DateTimeFormatOptions, +): string { + try { + return new Intl.DateTimeFormat(locale || undefined, { + ...options, + timeZone: timezone, + }).format(date); + } catch { + return new Intl.DateTimeFormat(undefined, options).format(date); + } +} diff --git a/apps/desktop/src/session/insights/past-notes.test.ts b/apps/desktop/src/session/insights/past-notes.test.ts index dd143cfddf..a2336d521e 100644 --- a/apps/desktop/src/session/insights/past-notes.test.ts +++ b/apps/desktop/src/session/insights/past-notes.test.ts @@ -137,7 +137,11 @@ describe("buildPastSessionNotes", () => { sessionId: "previous", title: "Weekly Product Sync", dateLabel: "May 28, 2026", + occurredAt: "2026-05-28T10:00:00.000Z", participantNames: ["alex", "jamie"], + sourceSummary: + "Aligned on transcript panel behavior. Past notes should stay short and scannable.", + relationship: "same_series", summary: null, isGenerating: false, }, @@ -145,7 +149,10 @@ describe("buildPastSessionNotes", () => { sessionId: "same_title", title: "Weekly Product Sync", dateLabel: "May 27, 2026", + occurredAt: "2026-05-27T10:00:00.000Z", participantNames: ["alex", "jamie"], + sourceSummary: "Confirmed notification copy and reviewed follow-ups.", + relationship: "matching_title", summary: null, isGenerating: false, }, @@ -160,6 +167,65 @@ describe("buildPastSessionNotes", () => { ]); }); + it("prioritizes recurring-series history over newer title matches", () => { + const participant = { + human_id: "alex", + user_id: "self", + source: "auto", + }; + const data = makeData({ + sessions: { + current: { + title: "Weekly Product Sync", + created_at: "2026-06-03T10:00:00.000Z", + event_json: JSON.stringify({ + started_at: "2026-06-03T10:00:00.000Z", + recurrence_series_id: "series-1", + }), + }, + recurring: { + title: "Weekly Product Sync", + created_at: "2026-05-20T10:00:00.000Z", + event_json: JSON.stringify({ + started_at: "2026-05-20T10:00:00.000Z", + recurrence_series_id: "series-1", + }), + }, + title_match: { + title: "Weekly Product Sync", + created_at: "2026-05-30T10:00:00.000Z", + event_json: "", + }, + }, + mapping_session_participant: { + current_alex: { ...participant, session_id: "current" }, + recurring_alex: { ...participant, session_id: "recurring" }, + title_match_alex: { ...participant, session_id: "title_match" }, + }, + enhanced_notes: { + recurring_summary: { + session_id: "recurring", + content: "Recurring context.", + position: 0, + }, + title_summary: { + session_id: "title_match", + content: "Title-match context.", + position: 0, + }, + }, + }); + + const result = buildPastSessionNotes(data, "current", "self"); + + expect( + result.notes.map((note) => [note.sessionId, note.relationship]), + ).toEqual([ + ["recurring", "same_series"], + ["title_match", "matching_title"], + ]); + }); + it("does not treat matching participants alone as related past notes", () => { const data = makeData({ sessions: { @@ -272,6 +338,13 @@ describe("past note relationship indexing", () => { current: session("current", "2026-06-03T10:00:00.000Z"), no_relations: session("no_relations", "2026-05-28T10:00:00.000Z"), }, + enhanced_notes: { + unrelated: { + session_id: "no_relations", + content: "Same title but no participant evidence.", + position: 0, + }, + }, }); const result = buildPastSessionNotes(data, "current", "self"); @@ -287,6 +360,26 @@ describe("past note relationship indexing", () => { tie_a: session("tie_a", "2026-05-28T10:00:00.000Z"), tie_b: session("tie_b", "2026-05-28T10:00:00.000Z"), }, + mapping_session_participant: { + current_alex: { + session_id: "current", + human_id: "alex", + user_id: "self", + source: "auto", + }, + tie_a_alex: { + session_id: "tie_a", + human_id: "alex", + user_id: "self", + source: "auto", + }, + tie_b_alex: { + session_id: "tie_b", + human_id: "alex", + user_id: "self", + source: "auto", + }, + }, enhanced_notes: { a: { session_id: "tie_a", content: "Summary A", position: 0 }, b: { session_id: "tie_b", content: "Summary B", position: 0 }, diff --git a/apps/desktop/src/session/insights/past-notes.ts b/apps/desktop/src/session/insights/past-notes.ts index fae71b24c0..c42058ae16 100644 --- a/apps/desktop/src/session/insights/past-notes.ts +++ b/apps/desktop/src/session/insights/past-notes.ts @@ -24,7 +24,10 @@ export type PastSessionNote = { sessionId: string; title: string; dateLabel: string; + occurredAt: string; participantNames?: string[]; + sourceSummary: string; + relationship: "same_series" | "matching_title"; summary: string | null; isGenerating: boolean; isRegenerateDisabled?: boolean; @@ -370,13 +373,14 @@ export function buildPastSessionNotes( const candidateEvent = getSessionEvent(candidateSession); const candidateParticipantIds = participantIdsFor(candidateSessionId); + const candidateSeriesId = getRecurrenceSeriesId(candidateEvent); if ( !isRelatedPastSession({ currentParticipantIds, currentSeriesId, currentTitleKey, candidateParticipantIds, - candidateSeriesId: getRecurrenceSeriesId(candidateEvent), + candidateSeriesId, candidateTitleKey: getSessionTitleKey(candidateSession), }) ) { @@ -418,7 +422,13 @@ export function buildPastSessionNotes( sessionId: candidateSessionId, title, dateLabel, + occurredAt: candidateEvent?.started_at || candidateSession.created_at, participantNames, + sourceSummary: source, + relationship: + currentSeriesId && candidateSeriesId === currentSeriesId + ? "same_series" + : "matching_title", summary: saved, isGenerating: false, dateMs: candidateTimestamp, @@ -429,7 +439,12 @@ export function buildPastSessionNotes( } const selected = items - .sort((a, b) => b.note.dateMs - a.note.dateMs) + .sort((a, b) => { + const relationshipOrder = + Number(b.note.relationship === "same_series") - + Number(a.note.relationship === "same_series"); + return relationshipOrder || b.note.dateMs - a.note.dateMs; + }) .slice(0, MAX_PAST_NOTES); return { @@ -749,7 +764,7 @@ function isRelatedPastSession({ } if (currentParticipantIds.size === 0 || candidateParticipantIds.size === 0) { - return true; + return false; } for (const participantId of candidateParticipantIds) { diff --git a/apps/desktop/src/session/insights/pre-meeting.test.ts b/apps/desktop/src/session/insights/pre-meeting.test.ts new file mode 100644 index 0000000000..c4b6374b1f --- /dev/null +++ b/apps/desktop/src/session/insights/pre-meeting.test.ts @@ -0,0 +1,39 @@ +import { describe, expect, it } from "vitest"; + +import { compactBriefText, getPreMeetingBriefFacts } from "./pre-meeting"; + +describe("pre-meeting brief text", () => { + it("keeps useful link labels without exposing raw URLs", () => { + expect( + compactBriefText( + "Review [launch plan](https://example.com/launch) at https://meet.example.com.", + 200, + ), + ).toBe("Review launch plan at"); + }); + + it("prefers generated facts and falls back to the source summary", () => { + const note = { + sessionId: "previous", + title: "Weekly sync", + dateLabel: "Aug 14, 2026", + occurredAt: "2026-08-14T09:00:00.000Z", + participantNames: ["Ada"], + sourceSummary: "The source summary remains available.", + relationship: "same_series" as const, + summary: "- Confirm launch timing.\n- Ada owns the prototype.", + isGenerating: false, + }; + + expect(getPreMeetingBriefFacts(note)).toEqual([ + "Confirm launch timing.", + "Ada owns the prototype.", + ]); + expect( + getPreMeetingBriefFacts({ + ...note, + summary: null, + }), + ).toEqual(["The source summary remains available."]); + }); +}); diff --git a/apps/desktop/src/session/insights/pre-meeting.ts b/apps/desktop/src/session/insights/pre-meeting.ts new file mode 100644 index 0000000000..1882cde707 --- /dev/null +++ b/apps/desktop/src/session/insights/pre-meeting.ts @@ -0,0 +1,45 @@ +import { extractPlainText } from "~/search/contexts/engine/utils"; +import type { PastSessionNote } from "~/session/insights/past-notes"; + +const MAX_FACTS = 3; +const MAX_SUMMARY_LENGTH = 320; +const SPACE_REGEX = /\s+/g; + +export function getPreMeetingBriefFacts(note: PastSessionNote): string[] { + const generatedFacts = note.summary + ? note.summary + .split("\n") + .map((line) => compactBriefText(line, MAX_SUMMARY_LENGTH)) + .filter(Boolean) + .slice(0, MAX_FACTS) + : []; + if (generatedFacts.length > 0) { + return [...new Set(generatedFacts)]; + } + + const sourceSummary = compactBriefText( + note.sourceSummary, + MAX_SUMMARY_LENGTH, + ); + return sourceSummary ? [sourceSummary] : []; +} + +export function compactBriefText(value: string, maxLength: number): string { + const text = extractPlainText(value) + .replace(/<[^>]*>/g, " ") + .replace(/!\[[^\]]*]\([^)]+\)/g, " ") + .replace(/\[([^\]]+)]\([^)]+\)/g, "$1") + .replace(/https?:\/\/\S+/gi, " ") + .replace(/(^|\s)([-*+]|\d+[.)])\s+/g, " ") + .replace(/[`_~>#]/g, "") + .replace(SPACE_REGEX, " ") + .trim(); + if (text.length <= maxLength) { + return text; + } + + const slice = text.slice(0, maxLength + 1); + const lastSpace = slice.lastIndexOf(" "); + const end = lastSpace > maxLength * 0.6 ? lastSpace : maxLength; + return `${slice.slice(0, end).trim()}…`; +} diff --git a/apps/desktop/src/session/queries.test.ts b/apps/desktop/src/session/queries.test.ts index aa296e4ebb..711c6659af 100644 --- a/apps/desktop/src/session/queries.test.ts +++ b/apps/desktop/src/session/queries.test.ts @@ -292,6 +292,38 @@ describe("session SQLite operations", () => { ).toBe(true); }); + it("ignores malformed calendar participants when creating an event note", async () => { + mocks.execute + .mockResolvedValueOnce([ + { + ...event, + participants_json: JSON.stringify([ + null, + { name: 42, email: "invalid@example.com" }, + ]), + }, + ]) + .mockResolvedValueOnce([]) + .mockResolvedValueOnce([{ id: "session-created" }]); + mocks.executeTransaction.mockResolvedValueOnce([1]); + + await expect(getOrCreateSessionForEventId("event-1")).resolves.toBe( + "session-created", + ); + + const statements = mocks.executeTransaction.mock.calls[0][0] as Array<{ + sql: string; + }>; + expect( + statements.some((statement) => statement.sql.includes("humans")), + ).toBe(false); + expect( + statements.some((statement) => + statement.sql.includes("session_participants"), + ), + ).toBe(false); + }); + it("does not wait for analytics before returning a newly created event note", async () => { mocks.analyticsEventFireAndForget.mockImplementationOnce( () => new Promise(() => {}), diff --git a/apps/desktop/src/session/queries/creation.ts b/apps/desktop/src/session/queries/creation.ts index e963fd8e06..dede20ec83 100644 --- a/apps/desktop/src/session/queries/creation.ts +++ b/apps/desktop/src/session/queries/creation.ts @@ -1,5 +1,9 @@ import { commands as analyticsCommands } from "@anlg/plugin-analytics"; -import type { EventParticipant, SessionEvent } from "@anlg/store"; +import { + eventParticipantSchema, + type EventParticipant, + type SessionEvent, +} from "@anlg/store"; import type { SessionChanges } from "./types"; @@ -331,7 +335,12 @@ function parseEventParticipants(value: string | null): EventParticipant[] { if (!value) return []; try { const parsed = JSON.parse(value) as unknown; - return Array.isArray(parsed) ? (parsed as EventParticipant[]) : []; + return Array.isArray(parsed) + ? parsed.flatMap((participant) => { + const result = eventParticipantSchema.safeParse(participant); + return result.success ? [result.data] : []; + }) + : []; } catch { return []; }